home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pclframe / common / frameplugin.cpp next >
C/C++ Source or Header  |  1996-10-10  |  1KB  |  85 lines

  1. /*
  2.  *--- FramePlugin.cpp ---------------------------------------------
  3.  * Copyright (c) 1996, Adobe Systems, Inc.  All rights reserved.
  4.  * 
  5.  *
  6.  *------------------------------------------------------------------
  7.  */
  8.  
  9. #include <string.h>
  10.  
  11. #include "PMPlugin.h"
  12. #include "CIWindow.h"
  13. #include "CICommandsAndQueries.h"
  14. #include "CIInterfaceManager.h"
  15. #include "PMInterfaceIDs.h"
  16. #include "PMCQErrs.h"
  17.  
  18. #include "FramePlugin.h"
  19.  
  20. #include "PCL.h"
  21.  
  22. /*---externals ---*/
  23. extern PMMessage        *gPMMessage;
  24. extern sPMParamBlockPtr    gPB;
  25.  
  26. /*
  27.  *--- ColorerPlugin ------------------------------------------------
  28.  * No special initialization needed.
  29.  *------------------------------------------------------------------
  30.  */
  31. FramePlugin::FramePlugin() : PPluginCall()
  32. {
  33.  
  34. }
  35.  
  36. void FramePlugin::DoLoad()
  37. {
  38.  
  39. }
  40.  
  41. void FramePlugin::DoInvoke() throw (PMErr)
  42. {
  43.  
  44. }
  45.  
  46. void FramePlugin::DoUnload()
  47. {
  48.  
  49. }
  50.  
  51. void FramePlugin::DoRegister()
  52. {
  53.  
  54. }
  55.  
  56. void FramePlugin::DoPMEvent()
  57. {
  58.  
  59. }
  60.  
  61. void FramePlugin::DoPMSysEvent()
  62. {
  63.  
  64. }
  65.  
  66. void FramePlugin::DoAcquireInterface()
  67. {
  68.  
  69. }
  70.  
  71. void FramePlugin::DoReleaseInterface()
  72. {
  73.  
  74. }
  75.  
  76. void FramePlugin::DoCleanup()
  77. {
  78.  
  79. }
  80.  
  81. void FramePlugin::DoShutdown()
  82. {
  83.     
  84. }
  85.